home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 31 / Amiga Format CD31 (1998-09-02)(Future Publishing)(GB)(Track 1 of 2)[!][issue 1998-10].iso / -seriously_amiga- / hardware / catweasel_extras / spd0 < prev    next >
Text File  |  1998-07-16  |  1KB  |  31 lines

  1. /* SP file system entry
  2.  *
  3.  * Catweasel version, tweaked from the messydisk/mfm.device version by SNG.
  4.  * This file enables reading and writing of Spectrum disks on the Catweasel
  5.  * floppy drive normally referred to as TD0:. SP1 does the same for TD1. By
  6.  * creating new versions of this file and changing the Unit line to use other
  7.  * numbers, you can make the SPFileSystem available on other devices. For
  8.  * example, changing the value of Unit to 1 would create a mount file that
  9.  * would allow for Spectrum floppies on TD1. The FLAGS value of 4 was meant
  10.  * for Atari 10 sector disks but works just as well on 800K SAM and Spectrum
  11.  * disks, in conjunction with SPFileSystem. Alter Surfaces or HighCyl if you
  12.  * wish to use Spectrum or SAM disks made on 40 track or single sided drives.
  13.  */
  14.  
  15. FileSystem     = L:SPFileSystem
  16. Device         = multidisk.device
  17. Unit           = 0
  18. Flags          = 4
  19. Surfaces       = 2
  20. BlocksPerTrack = 10
  21. Reserved       = 0
  22. Interleave     = 0
  23. LowCyl         = 0
  24. HighCyl        = 79
  25. Buffers        = 40
  26. BufMemType     = 1
  27. StackSize      = 8000
  28. Priority       = 8
  29. GlobVec        = -1
  30. DosType        = 0x53504543
  31.